luogu2114 [NOI2014]起床困难综合症

1
2
3
4
5
贪心
从高到低每一位考虑放0还是1
0能造成伤害就放0
否则,1能造成就放1
否则,不放
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include<bits/stdc++.h>
#define mp make_pair
#define pb push_back
using namespace std;
typedef long long LL;
typedef pair<int,int> PII;
inline LL read()
{
LL x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}
return x*f;
}
const int N=100008;
int n,m,maxi,ans;
char s[5];
struct node{
int type,x;
inline int calc(const int &y){
if(type==0){
return x|y;
}
else if(type==1){
return x&y;
}
else{
return x^y;
}
}
}a[N];
inline int solve(int x)
{
for(int i=1;i<=n;++i){
x=a[i].calc(x);
}
return x;
}
int main()
{
n=read();m=read();
for(int i=1;i<=n;++i){
scanf("%s",s);
if(s[0]=='O'){
a[i].type=0;
}
else if(s[0]=='A'){
a[i].type=1;
}
else{
a[i].type=2;
}
a[i].x=read();
}
for(maxi=1;maxi<=m;maxi<<=1);
for(maxi>>=1;maxi;maxi>>=1){
if(solve(0)&maxi){
continue;
}
if((ans^maxi)<=m&&(solve(maxi)&maxi)){
ans^=maxi;
}
}
printf("%d",solve(ans));
return 0;
}